runtime.m.gsignal (field)
34 uses
runtime (current package)
arena.go#L465: if mp.gsignal == getg() {
arena.go#L653: if mp.gsignal == getg() {
cgocheck.go#L42: if gp == gp.m.g0 || gp == gp.m.gsignal {
debug.go#L89: if gp == gp.m.g0 || gp == gp.m.gsignal {
debug.go#L108: if gp == gp.m.g0 || gp == gp.m.gsignal {
malloc.go#L1013: if mp.gsignal == getg() {
malloc.go#L1384: if gp := getg(); gp == gp.m.gsignal {
os_linux.go#L401: mp.gsignal = malg(32 * 1024) // Linux wants >= 2K
os_linux.go#L402: mp.gsignal.m = mp
proc.go#L853: if mp.gsignal != nil {
proc.go#L854: mp.gsignal.stackguard1 = mp.gsignal.stack.lo + stackGuard
proc.go#L1674: if mp.gsignal != nil {
proc.go#L1675: stackfree(mp.gsignal.stack)
proc.go#L1680: mp.gsignal = nil
proc.go#L3935: if gp == gp.m.g0 || gp == gp.m.gsignal {
runtime2.go#L541: gsignal *g // signal-handling g
signal_unix.go#L476: setg(gp.m.gsignal)
signal_unix.go#L482: gp.m.gsignal.stktopsp = getcallersp()
signal_unix.go#L557: if sp >= mp.gsignal.stack.lo && sp < mp.gsignal.stack.hi {
signal_unix.go#L1043: print("mp.gsignal stack [", hex(mp.gsignal.stack.lo), " ", hex(mp.gsignal.stack.hi), "], ")
signal_unix.go#L1237: signalstack(&mp.gsignal.stack)
signal_unix.go#L1325: old.stack = gp.m.gsignal.stack
signal_unix.go#L1326: old.stackguard0 = gp.m.gsignal.stackguard0
signal_unix.go#L1327: old.stackguard1 = gp.m.gsignal.stackguard1
signal_unix.go#L1328: old.stktopsp = gp.m.gsignal.stktopsp
signal_unix.go#L1331: gp.m.gsignal.stack.lo = stsp
signal_unix.go#L1332: gp.m.gsignal.stack.hi = stsp + st.ss_size
signal_unix.go#L1333: gp.m.gsignal.stackguard0 = stsp + stackGuard
signal_unix.go#L1334: gp.m.gsignal.stackguard1 = stsp + stackGuard
signal_unix.go#L1343: gp := getg().m.gsignal
stack.go#L973: print("runtime: newstack called from g=", hex(thisg.m.morebuf.g), "\n"+"\tm=", thisg.m, " m->curg=", thisg.m.curg, " m->g0=", thisg.m.g0, " m->gsignal=", thisg.m.gsignal, "\n")
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |